{% extends "base.html" %} {% block title %}Rejected Doctors - Admin Panel{% endblock %} {% block content %}
View rejected doctor registrations
| Doctor | Specialization | PMC Code | Appeal Count | Rejection Date | Status | Actions |
|---|---|---|---|---|---|---|
|
{{ doctor.user.name[0].upper() }}
{{ doctor.user.name }}{{ doctor.user.email }} |
{{ doctor.specialization }} | {{ doctor.pmc_code }} | {{ doctor.appeal_count }} | {% if doctor.rejection_date %} {{ doctor.rejection_date.strftime('%B %d, %Y at %I:%M:%S %p') }} {% else %} N/A {% endif %} | {% if doctor.appeal_count >= 3 %} Suspended {% else %} Can Appeal {% endif %} |
View Details
{% if doctor.appeal_count < 3 %}
{% endif %}
|